home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / fgl105c.zip / 12-03.C < prev    next >
Text File  |  1991-05-06  |  334b  |  18 lines

  1. main()
  2. {
  3.    if (fg_capslock())
  4.       printf("CapsLock is on.\n");
  5.    else
  6.       printf("CapsLock is off.\n");
  7.  
  8.    if (fg_numlock())
  9.       printf("NumLock is on.\n");
  10.    else
  11.       printf("NumLock is off.\n");
  12.  
  13.    if (fg_scrlock())
  14.       printf("ScrollLock is on.\n");
  15.    else
  16.       printf("ScrollLock is off.\n");
  17. }
  18.